home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 25 / AACD 25.iso / AACD / Programming / PtnAsm / PtnAsm.readme < prev    next >
Encoding:
Text File  |  1999-12-23  |  854 b   |  28 lines

  1. Short:    Best PowerPC assembler (FAST!) with extended features
  2. Author:   Rafal Grembowski (diamond@go2.pl)
  3. Uploader: skipp@vividdesign.pl
  4. Type:     dev/asm
  5.  
  6. Description:
  7.  
  8.  
  9. PtnAsm is a PowerPC assembler for Amiga. It requies a ppc processor
  10. and a WarpOS installed. Most important features:
  11.  
  12. - creates objects in EHF format
  13. - 603 and 604 instructions and all 32-bit extended mnemonics are
  14.   supported
  15. - complete floating-point support
  16. - uses the same syntax as PowerASM
  17. - support for most of the popular directives
  18.  
  19. Extended Features:
  20.  
  21. With PtnAsm it's posible to write a code as a sequence of equations. What
  22. does it mean? Instead of writting  addi r3,r4,3 you can write r3 = r4 + 3.
  23. This gives the same resoult. It's possible to acces almost all instructions
  24. in this way. The general format is:
  25.  
  26.   destination [.][o][s] = source1[operator source2 ...]
  27.  
  28.